Package test

Source Code of test.TestChangePasswordDialog

/*
* Created on Jan 26, 2004
*/
package test;

import nz.co.transparent.client.gui.util.ChangePasswordDialog;

/**
* @author John Zoetebier
*/
public class TestChangePasswordDialog {

  /**
   * 
   */
  public TestChangePasswordDialog() {
    super();
  }

  public static void main(String[] args) {

    ChangePasswordDialog p = new ChangePasswordDialog(null, "Test");
    System.out.println("Return: " + p.showDialog());
    p = null;
    System.exit(0);
  }
}
TOP

Related Classes of test.TestChangePasswordDialog

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.